home *** CD-ROM | disk | FTP | other *** search
/ Aminet 51 / Aminet 51 (2002)(GTI - Schatztruhe)[!][Oct 2002].iso / Aminet / dev / misc / FlexCat.lha / Lib / Hardcode_h.sd < prev    next >
Encoding:
Text File  |  1999-11-28  |  860 b   |  35 lines

  1. ##rem $Id: Hardcode_h.sd,v 1.1 1999/11/28 03:40:04 carlos Exp $
  2. ##stringtype C
  3. ##shortstrings
  4. /****************************************************************
  5.    This file was created automatically by `%fv'
  6.    from "%f0".
  7.  
  8.    Do NOT edit by hand!
  9. ****************************************************************/
  10.  
  11. /****************************************************************
  12.  
  13.    This file is a quick-hack-solution for all of you wanting
  14.    to compile FlexCat on non-amiga platform. It creates
  15.    necessary string tables (hardcoded ATM) and functions to
  16.    make code work under any operating system.
  17.  
  18.    Carlos
  19.  
  20. ****************************************************************/
  21.  
  22. #ifndef %b_CAT_H
  23. #define %b_CAT_H
  24.  
  25. void Open%bCatalog( void );
  26. void Close%bCatalog( void );
  27.  
  28. char * %b_Strings[%n] = {
  29.     (char *)%s%(,)
  30. };
  31.  
  32. #define %i %b_Strings[%e]
  33.  
  34. #endif
  35.